home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Very Best of Atari Inside
/
The Very Best of Atari Inside 1.iso
/
mint
/
mntlib20
/
lib
/
abs.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1989-08-13
|
144 b
|
11 lines
/* return absolute values */
#include <stdlib.h>
int abs(x)
int x;
{ return x < 0 ? -x : x; }
long labs(x)
long x;
{ return x < 0 ? -x : x; }